Motion.MoveAxisRelative method

Commands a controlled motion of a specified distance relative to the current set position. The relative distance is added to the current set position at the time this command is called.

Namespace: IntervalZero.KINGSTAR.Local.Api

Assembly: IntervalZero.KINGSTAR.Local.Api (in IntervalZero.KINGSTAR.Local.dll) Version: 4.4.0.0

Syntax

C#VB
public KsCommandStatus MoveAxisRelative(
       int Index,
       double Distance,
       double Velocity,
       double Acceleration,
       double Deceleration,
       double Jerk,
       McBufferMode BufferMode
)
Public Function MoveAxisRelative(
       Index As Integer,
       Distance As Double,
       Velocity As Double,
       Acceleration As Double,
       Deceleration As Double,
       Jerk As Double,
       BufferMode As McBufferMode
) As KsCommandStatus

Parameters

Index [in]

Type: int

The index of an axis. Indexes are zero based. Aliases affect this parameter.

 

Distance [in]

Type: double

The relative distance for the motion. [unit]

 

Velocity [in]

Type: double

A value of the maximum velocity. (not necessarily reached) [unit/second]

 

Acceleration [in]

Type: double

A value of the acceleration. The unit is determined by McProfileType. (increasing energy of the motor) [unit/second2] or [second]

 

Deceleration [in]

Type: double

A value of the deceleration. The unit is determined by McProfileType. (decreasing energy of the motor) [unit/second2] or [second]

 

Jerk [in]

Type: double

A value of the jerk. The unit is determined by McProfileType. [unit/second3] or [second]

 

BufferMode [in]

Type: McBufferMode

Defines how to blend the velocity of two methods.

Return value

Type: KsCommandStatus

Returns the KsCommandStatus class.

Remarks

Examples

C#
N/A

See also

Motion Class

IntervalZero.KINGSTAR.Local.Api Namespace